Skip to main content
GET
/
workflows
/
{username}
/
{workflow_name}
Get workflow details
curl --request GET \
  --url https://api.fal.ai/v1/workflows/{username}/{workflow_name} \
  --header 'Authorization: <api-key>'
{
  "workflow": {
    "name": "<string>",
    "title": "<string>",
    "user_nickname": "<string>",
    "created_at": "<string>",
    "is_public": true,
    "contents": {}
  }
}

Authorizations

Authorization
string
header
required

API key must be prefixed with "Key ", e.g. Authorization: Key YOUR_API_KEY

Path Parameters

username
string
required

The username of the workflow owner

Example:

"johndoe"

workflow_name
string
required

The workflow name/slug

Example:

"my-image-workflow"

Response

Successfully retrieved workflow details

workflow
object
required